home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / win / pascal / ssavwin.exe / LAZYSAVR.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-04-19  |  937 b   |  20 lines

  1. {****************************************************************************
  2. *                                                                           *
  3. *  LazySavr.pas: Plug-in animation module for SSaveDem.pas                  *
  4. *                                                                           *
  5. *  Rev. 0.1   19.4.93   MK  IR                                              *
  6. *                                                                           *
  7. ****************************************************************************}
  8.  
  9. { Name for this Screen Saver - shows up in Control Panel: }
  10. {$D SCRNSAVE Lazybones }
  11.  
  12. { The laziest Screen Saver you can imagine: just blanks the screen.  }
  13.  
  14. const AppName: PChar = 'Screen Saver.Lazybones' ;       { CONTROL.INI heading }
  15. type
  16.      PMySaverWin = ^TMySaverWin;       { TMySaverWin identical to TScSaverWin }
  17.      TMySaverWin = Object(TScSaverWin)
  18.    end;
  19.  
  20.